Ok, here is the information of how to make levels. Look at the example below:

testlevel;;
1;
2;
1;
1;
1;
1;
1;

Notice the first line has two semi-colons, this tells the program the name of the level. The rest of the lines tell the program what to put at the position. Each line here goes from left to right, up to down in the game. To find out more of what each number means, go to level editing info. The lines, excluding the first one, need a semi-colon.

My recommendation is to write out the numbers out in a row first:

testlevel;;
1;5;12;14;22;3;5;6;8;1;

then put them each in a line:

testlevel;;
1;
5;
12;
14;
22;
3;
5;
6;
8;
1;

This is only a recommendation, ofcourse you can do which ever way that you feel comfortable with.
